home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / dev / asm / NewStartup39.lha / NewStartup39.readme < prev   
Text File  |  1996-10-06  |  2KB  |  61 lines

  1. Short:    Enhanced startupcode for assembler v3.9
  2. Author:   Kenneth C. Nilsen (kenneth@norconnect.no)
  3. Uploader: Kenneth C. Nilsen (kenneth@norconnect.no)
  4. Type:     dev/asm
  5. Replaces: dev/asm/NewStartup*
  6.  
  7.  
  8. Startup.asm
  9. ===========
  10.  
  11. $VER: Startup_asm 3.9 (06.10.96)
  12.  
  13. Copyright © 1995,1996 by Kenneth C. Nilsen (kenneth@norconnect.no).
  14. All rights reserved.
  15.  
  16. Currently the most powerful startup code you'll find for your assembler.
  17. This source is public domain.
  18.  
  19. Works with any kickstart, chip and configuration.
  20. Should work with any assembler.
  21.  
  22.  
  23.  
  24. WHAT KIND OF USE?
  25. =================
  26.  
  27.     * Checks processor and fpu if wanted. Allowing requirement for this.
  28.     * Run your program from WB and CLI.
  29.     * Opens and closes wanted libraries automatically!
  30.     * Dumps error messages on ALL errors (from 3.5+): too low processor,
  31.       no FPU, no library, debug info etc. and then exits gracefully.
  32.     * Parse any kind of arguments. Handles quotes, asterix' etc.
  33.       Returns null terminated extracted arguments.
  34.     * Set taskname easily.
  35.     * Just one include (itself). Need no external includes.
  36.     * Adds 11 macro commands to your assembler.
  37.     * Exit with the right return code.
  38.     * Educational source. Source fully documented.
  39.     * Source is public domain.
  40.     * Demo sources follows this archive.
  41.  
  42.  
  43.  
  44. NEW FEATURES
  45. ============
  46.  
  47. 3.9:
  48.     - Added two macros:
  49.  
  50.         InitDebugHandler "<filename>"
  51.         DebugDump "Debug text",labelID
  52.  
  53.       Powerful debug tool to help you in your programming. The debug
  54.       macros can easily be activated or deactivated. If deactivated they
  55.       will not be assembled.
  56.  
  57.     - Changed the CPU and MATH check. You now have to activate them the
  58.       same way as the debug procedure or the check will not be assembled.
  59.       This will save space in your programs if CPU/MATH check isn't
  60.       necessary.
  61.